home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Source Code
/
Visual Basic Source Code.iso
/
vbsource
/
univspl
/
fftmain.h
< prev
next >
Wrap
C/C++ Source or Header
|
1999-02-02
|
593b
|
25 lines
//---------------------------------------------------------------------------
#ifndef fftmainH
#define fftmainH
//---------------------------------------------------------------------------
#ifdef __cplusplus
extern "C" {
#endif
void cleanup(int exitcode);
float fftmain(long sample_rate, long fft_size, float freq);
#ifdef __cplusplus
}
#endif
extern float *sig,*fftsig;
extern float *weights;
extern float *fftreal;
extern long num_samps,fsize;
extern float bin_width;
//---------------------------------------------------------------------------
#endif